找传奇、传世资源到传世资源站!

log4net记录 wpf程序 全局错误日志 例子源码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

log4net 记录wpf 错误日志

using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Linq;using System.Windows;using Common;namespace WpfApplication1{ /// <summary> /// App.xaml 的交互逻辑 /// </summary> public partial class App : Application { public App() { this.DispatcherUnhandledException = new System.Windows.Threading.DispatcherUnhandledExceptionEventHandler(App_DispatcherUnhandledException); AppDomain.CurrentDomain.UnhandledException = new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); } void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { if (e.ExceptionObject is System.Exception) { LogHelper.ErrorLog(null, (System.Exception)e.ExceptionObject); } } public static void HandleException(Exception ex) { LogHelper.ErrorLog(null,ex); } void App_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) { e.Handled = true; LogHelper.ErrorLog(null, e.Exception); } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复